-
Notifications
You must be signed in to change notification settings - Fork 5.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[docs] Restructure and expand presto_cpp docs #22717
[docs] Restructure and expand presto_cpp docs #22717
Conversation
cc5e92a
to
def5146
Compare
2094543
to
9ca8132
Compare
All comments addressed, commits squashed, ready! |
9ca8132
to
05cf944
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@steveburnett looks great. One comment.
05cf944
to
0705080
Compare
Thanks! Review comments addressed, commits squashed, CI running. |
0705080
to
e8a9c61
Compare
|
||
* Not all built-in functions are implemented in C++. Attempting to use unimplemented functions results in a query failure. For supported functions, see `Function Coverage <https://facebookincubator.github.io/velox/functions/presto/coverage.html>`_. | ||
|
||
* Not all built-in types are implemented in C++. Attempting to use unimplemented types will result in a query failure. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@steveburnett : Apologize for the delay. I feel we should add more detail here about the supported and unsupported types here.
The specifics are :
All basic/structured types (from https://prestodb.io/docs/0.286/language/types.html) but [CHAR, TIME, TIME WITH TIMEZONE] are supported. These are subsumed by VARCHAR, TIMESTAMP and TIMESTAMP WITH TIMEZONE.
Caveat : Prestissimo only supports unlimited length Varchar. It does not honor the lengths in varchar[n].
Types IPADDRESS, IPPREFIX, UUID, kHYPERLOGLOG, P4HYPERLOGLOG, QDIGEST, TDIGEST are not supported
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Opened #22772 to add this content to the docs.
Description
Motivation and Context
Updates and expands C++ based Presto documentation.
Impact
Documentation.
Test Plan
Test in local build before opening PR, then CI.
Contributor checklist
Release Notes
Please follow release notes guidelines and fill in the release notes below.